home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / bdeorx / BDEDORX.ZIP / RestDevl / Restruc.dpr next >
Encoding:
Text File  |  1997-10-08  |  270 b   |  17 lines

  1. program Restruc;
  2.  
  3. uses
  4.   Forms,
  5.   Restruc1 in 'RESTRUC1.PAS' {MainForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   {$IFDEF WIN32}
  11.   Application.Initialize;
  12.   {$ENDIF}
  13.   Application.Title := 'Restructor';
  14.   Application.CreateForm(TMainForm, MainForm);
  15.   Application.Run;
  16. end.
  17.